/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #0F252D;
}

/* Header Styles */
.header {
    width: 100%;
    padding: 2rem 3% 0.5rem;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-right: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: white;
    opacity: 0.8;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #007bff;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-image: url(/channel-list/assets/images/DesktopHeroBanner_2x__5_.png);
    color: white;
    border-radius: 10px;
    margin: 1rem auto;
    padding: 1rem 2rem;
    max-width: 1200px;
    width: 95%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.installation-guides {

    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.installation-guides h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #fcfcfc;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem;
}

.installation-guides h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
    border-radius: 2px;
}

.subtitle {
    text-align: center;
    color: #ebebeb;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.device-guides {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.device-card {
    background: #242d33;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.device-card:hover {
    background: #2c363d;
}

.device-card h3 {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    font-size: 1.2rem;
}

.device-card h3 i {
    color: #007bff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.device-card.active h3 i {
    transform: rotate(45deg);
}

.guide-content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.guide-content h4 {
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-content h4:first-child {
    margin-top: 0;
}

.guide-content ol {
    padding-left: 1.5rem;
    margin: 0;
}

.guide-content li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.guide-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .device-guides {
        padding: 1rem;
    }
    
    .device-card {
        padding: 1.2rem;
    }
    
    .device-card h3 {
        font-size: 1.1rem;
    }
    
    .guide-content li {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile and Tablet Responsive */
@media (max-width: 900px) {
    .header {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -300px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.85);
        padding: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        visibility: visible;
        backdrop-filter: blur(8px);
    }

    .nav-menu.active {
        right: 20px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        height: 100%;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 1rem;
        text-align: left;
        color: #333;
        opacity: 1;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }

    .logo {
        margin-right: auto;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        color: #007bff;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .swiper-slide {
        height: 100px;
        width: 100px;
        margin: 0 auto;
    }

    .card-header i {
        font-size: 2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .pricing-card li {
        font-size: 0.85rem;
    }
    
    .pricing-card button {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .popular-tag, .best-value {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        top: -12px;
    }
}

/* Trends Section */
.trends-section {
    padding: 2rem 1rem;
    background: #f8f9fa;
}

.trends-carousel {
    margin: 0 auto;
    padding: 1rem;
}

.trend-slide {
    text-align: center;
    padding: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trend-slide:hover {
    transform: translateY(-5px);
}

.trend-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trend-slide img {
        height: 200px;
    }
}

/* Benefits Section */
.benefits-section {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
}

.benefits-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #007bff;
    margin: 1rem auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.benefit-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    margin-bottom: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item li i {
    color: #007bff;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        margin-bottom: 1rem;
    }
}

/* Nassr TV Section */
.nassr-section {
    padding: 6rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)), url('2880___1240.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.nassr-section .section-content {
    text-align: left;
    max-width: 800px;
    margin: 0 0 8rem 5%;
    position: relative;
    z-index: 1;
    width: 50%;
}

.nassr-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.nassr-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.nassr-swiper {
    max-width: 1200px;
    margin: 4rem 5% 0 5%;
    padding: 1rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.nassr-slide {
    padding: 0.5rem;
    margin: 0;
}

.nassr-content {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nassr-content:hover {
    transform: translateY(-5px);
}

.nassr-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive Design for Nassr Section */
@media (max-width: 1200px) {
    .nassr-content {
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .nassr-content {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .nassr-section {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }

    .nassr-section .section-content {
        margin: 0 0 4rem 3%;
        width: 100%;
    }

    .nassr-swiper {
        margin: 3rem 0 0 0;
        width: 100%;
    }

    .nassr-section h2 {
        font-size: 2rem;
    }

    .nassr-slide {
        padding: 0;
        margin: 0;
    }

    .nassr-content {
        max-width: 260px;
    }
}

@media (max-width: 576px) {
    .nassr-content {
        max-width: 240px;
    }
}

/* Add media query for tablet */
@media (max-width: 1024px) {
    .nassr-section {
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)),url('/assets/images/mobile2880___1240.png');
        background-size: cover;
        background-position: center;
    }
}

/* Features Section */
.features-section {
    padding: 2rem 1rem;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: bold;
}

.features-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-block {
    background: #D9D9D9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-block h3 {
    font-size: 1.2rem;
    color: #414141;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-block p {
    font-size: 0.95rem;
    color: #6e6e6e;
    line-height: 1.5;
}

/* Responsive Design for Features Section */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1rem;
    }

    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding: 1.5rem;
    }

    .feature-block h3 {
        font-size: 1.3rem;
    }

    .feature-block p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .features-section h2 {
        font-size: 1.8rem;
    }

    .feature-block {
        padding: 1.2rem;
    }

    .feature-block h3 {
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fffefe;
    font-weight: bold;
}

.faq-container {
    max-width: 90%;
    margin: 0 auto;
}

.faq-item {
    background: #242d33;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: white;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    color: white;
}

.faq-question:hover {
    background-color: #5b6974;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fffdfd;
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ebeef1;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
    padding-top:  1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }
}

@media (max-width: 576px) {
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

:root {
    --color-smoke: #1F2427;
    --color-chalk: #F9FAFA;
    --color-tarmac-light-60: #9EA2A4;
    --color-link: #006FE8;
}

.supported-devices {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    position: relative;
    padding-block: 60px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    margin-inline: auto;
}

.devices-title {
    color: var(--color-chalk);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    max-width: 680px;
}

.gold-color {
    color: gold;
}

.devices-description {
    color: var(--color-tarmac-light-60);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 680px;
}

.device-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.device-header {
    color: var(--color-chalk);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.line {
    height: 1px;
    background: #3D4549;
    max-width: 393px;
    width: 100%;
}

.logo-container {
    margin: 48px auto 0 auto;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
    column-gap: 28px;
    max-width: 1073px;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.device-logo {
    max-height: 26px;
    max-width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .supported-devices {
        padding-top: 40px;
        padding-bottom: 0;
    }
    
    .content-container {
        padding-block: 60px;
    }
    
    .line {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .supported-devices {
        width: 100%;
        align-items: start;
        box-sizing: border-box;
        flex-direction: column;
        height: auto;
        padding: 20px;
        display: block;
    }
    
    .logo-container {
        width: 100%;
        max-width: 100%;
    }
    
    .device-logo {
        max-height: 20px;
    }
    
    .line {
        display: none;
    }
}

/* RTL Support */
[dir='rtl'] .logo-container {
    direction: rtl;
}

:root {
    --color-smoke: #1F2427;
    --color-chalk: #F9FAFA;
    --color-tarmac-light-60: #9EA2A4;
    --color-link: #006FE8;
}

.supported-devices {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    position: relative;
    padding-block: 60px;
    
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    margin-inline: auto;
}

.devices-title {
    color: var(--color-chalk);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
    max-width: 680px;
}

.gold-color {
    color: gold;
}

.devices-description {
    color: var(--color-tarmac-light-60);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 680px;
}

.device-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.device-header {
    color: var(--color-chalk);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.line {
    height: 1px;
    background: #3D4549;
    max-width: 393px;
    width: 100%;
}

.logo-container {
    margin: 48px auto 0 auto;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 48px;
    column-gap: 28px;
    max-width: 1073px;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.device-logo {
    max-height: 26px;
    max-width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .supported-devices {
        padding-top: 40px;
        padding-bottom: 0;
    }
    
    .content-container {
        padding-block: 60px;
    }
    
    .line {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .supported-devices {
        width: 100%;
        align-items: start;
        box-sizing: border-box;
        flex-direction: column;
        height: auto;
        padding: 20px;
        display: block;
    }
    
    .logo-container {
        width: 100%;
        max-width: 100%;
    }
    
    .device-logo {
        max-height: 20px;
    }
    
    .line {
        display: none;
    }
}

/* RTL Support */
[dir='rtl'] .logo-container {
    direction: rtl;
} 

/* For mobile devices, make it even shorter if needed */
@media (max-width: 768px) {
    .hero {
        height: 70vh; /* Even shorter on mobile */
    }
} 

/* Add media queries for responsive behavior */
@media screen and (max-width: 1024px) {
    .hero {
        /* Change background image for tablet */
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./hero/foot\ tablett.webp');
        background-size: cover;
        background-position: center;
        height: 50%; /* Will adjust with viewport height */
        background-image: url(/channel-list/assets/images/DesktopHeroBanner_2x__5_.png);
    }

    .hero-content {
        padding-top: 10rem; /* Adjust padding for tablet */
    }
}

@media screen and (max-width: 768px) {


    .hero-content {
        padding-top: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

